home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / MPW Interfaces & Libraries / AIncludes / HyperXCmd.a < prev    next >
Encoding:
Text File  |  1992-01-29  |  734 b   |  38 lines  |  [TEXT/MPS ]

  1. ; Version: 3
  2. ; Created: Friday, October 20, 1989 at 9:31:00 PM
  3. ;
  4. ; File: HyperXCmd.a
  5. ;
  6. ; Assembler Interface to the Macintosh Libraries
  7. ; Copyright Apple Computer, Inc. 1988-1991
  8. ; All Rights Reserved
  9. ;
  10. ;--------------------------------------------------------------------
  11.  
  12.     IF &TYPE('__IncludingHyperXCmd__') = 'UNDEFINED' THEN
  13. __IncludingHyperXCmd__    SET    1
  14.  
  15. ;  result codes
  16.  
  17.  
  18. xresSucc          EQU         0
  19. xresFail          EQU         1
  20. xresNotImp        EQU         2
  21.  
  22. ; XCmdBlock Record
  23.  
  24. XCmdBlock         RECORD      0
  25. paramCount        DS.W        1
  26. params            DS.L        16
  27. returnValue       DS.L        1
  28. passFlag          DS.B        1
  29.                   DS.B        1
  30. entryPoint        DS.L        1
  31. request           DS.W        1
  32. result            DS.W        1
  33. inArgs            DS.L        8
  34. outArgs           DS.L        4
  35. xCmdBlockEnd      EQU         *
  36.                   ENDR
  37.  
  38.     ENDIF    ; ...already included